home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / text / misc / nenscript1_3.lha / defs.h next >
C/C++ Source or Header  |  1992-10-01  |  920b  |  40 lines

  1. /*
  2.  *   $Id: defs.h,v 1.2 1992/10/02 01:02:32 craigs Exp $
  3.  *
  4.  *   This code was written by Craig Southeren whilst under contract
  5.  *   to Computer Sciences of Australia, Systems Engineering Division.
  6.  *   It has been kindly released by CSA into the public domain.
  7.  *
  8.  *   Neither CSA or me guarantee that this source code is fit for anything,
  9.  *   so use it at your peril. I don't even work for CSA any more, so
  10.  *   don't bother them about it. If you have any suggestions or comments
  11.  *   (or money, cheques, free trips =8^) !!!!! ) please contact me
  12.  *   care of geoffw@extro.ucc.oz.au
  13.  *
  14.  
  15.  */
  16.  
  17.  /* common definitions */
  18.  
  19. #ifndef True
  20. #define True    1
  21. #define False    0
  22. #endif
  23.  
  24. #ifndef MIN
  25. #define MIN(a,b) ((a)<=(b)?(a):(b))
  26. #endif
  27.  
  28. #ifndef MAX
  29. #define MAX(a,b) ((a)>=(b)?(a):(b))
  30. #endif
  31.  
  32.  
  33. /* default printer */
  34. #ifdef MSDOS
  35. #define DEF_PRINTER "prn"
  36. #else
  37. #define    DEF_PRINTER    "PostScript"        /* default printer */
  38. #endif
  39.  
  40.